home *** CD-ROM | disk | FTP | other *** search
/ Aminet 38 / Aminet 38 (2000)(Schatztruhe)[!][Aug 2000].iso / Aminet / dev / c / CLib-SDI.lha / CLib-SDI / include / libraries / example.h
Encoding:
C/C++ Source or Header  |  2000-06-25  |  450 b   |  22 lines

  1. /*
  2. **      $VER: example.h 1.0 (25.06.2000)
  3. **
  4. **      main include file for example.library
  5. */
  6.  
  7. #ifndef LIBRARIES_EXAMPLE_H
  8. #define LIBRARIES_EXAMPLE_H
  9.  
  10. #ifndef EXEC_LIBRARIES_H
  11. #include <exec/libraries.h>
  12. #endif
  13.  
  14. /* This is the official part of ExampleBase. It has private fields as well. */
  15.  
  16. struct ExampleBase {
  17.   struct Library         exb_LibNode;
  18.   ULONG                  exb_NumCalls; /* example field */
  19. };
  20.  
  21. #endif /* LIBRARIES_EXAMPLE_H */
  22.